/*
   ========================================
    FONTS-CORMORANT-GARAMOND.CSS
    Auteur                : Renaud
    Création              : 26 novembre 2025
    Dernière modification : 08 décembre 2025
    ========================================
*/
/**
*   @project   DEVENIR-ARTISAN.NET
*   Ce fichier déclare la famille de police Cormorant Garamond.
*   @file  css/fonts-cormorant-garamond.css
*
*   @see   fonts/                 (Dossier contenant les fichiers .ttf)
*   @see   index.php              (Ou fichier principal CSS qui fait l'import)
*
*   @font-family 'Cormorant Garamond'
*   @weights     300 (Light), 400 (Regular), 500 (Medium), 
*                600 (SemiBold), 700 (Bold)
*/

/* --- 300 - LIGHT --- */
@font-face {
   font-family: 'Cormorant Garamond';
   src: url("fonts/CormorantGaramond-Light.ttf") format("truetype");
   font-weight: 300;
   font-style: normal;
   font-display: swap;
}
@font-face {
   font-family: 'Cormorant Garamond';
   src: url("fonts/CormorantGaramond-LightItalic.ttf") format("truetype");
   font-weight: 300;
   font-style: italic;
   font-display: swap;
}

/* --- 400 - REGULAR (Normal) --- */
@font-face {
   font-family: 'Cormorant Garamond';
   src: url("fonts/CormorantGaramond-Regular.ttf") format("truetype");
   font-weight: 400;
   font-style: normal;
   font-display: swap;
}
@font-face {
   font-family: 'Cormorant Garamond';
   src: url("fonts/CormorantGaramond-Italic.ttf") format("truetype");
   font-weight: 400;
   font-style: italic;
   font-display: swap;
}

/* --- 500 - MEDIUM --- */
@font-face {
   font-family: 'Cormorant Garamond';
   src: url("fonts/CormorantGaramond-Medium.ttf") format("truetype");
   font-weight: 500;
   font-style: normal;
   font-display: swap;
}
@font-face {
   font-family: 'Cormorant Garamond';
   src: url("fonts/CormorantGaramond-MediumItalic.ttf") format("truetype");
   font-weight: 500;
   font-style: italic;
   font-display: swap;
}

/* --- 600 - SEMIBOLD --- */
@font-face {
   font-family: 'Cormorant Garamond';
   src: url("fonts/CormorantGaramond-SemiBold.ttf") format("truetype");
   font-weight: 600;
   font-style: normal;
   font-display: swap;
}
@font-face {
   font-family: 'Cormorant Garamond';
   src: url("fonts/CormorantGaramond-SemiBoldItalic.ttf") format("truetype");
   font-weight: 600;
   font-style: italic;
   font-display: swap;
}

/* --- 700 - BOLD --- */
@font-face {
   font-family: 'Cormorant Garamond';
   src: url("fonts/CormorantGaramond-Bold.ttf") format("truetype");
   font-weight: 700;
   font-style: normal;
   font-display: swap;
}
@font-face {
   font-family: 'Cormorant Garamond';
   src: url("fonts/CormorantGaramond-BoldItalic.ttf") format("truetype");
   font-weight: 700;
   font-style: italic;
   font-display: swap;
}