/* ================================
   POLICES PERSONNALISÉES
   ================================
   
   Instructions :
   1. Télécharger les polices Dx Sillage et Quildge Demo
   2. Placer les fichiers .woff, .woff2, .ttf dans les dossiers respectifs
   3. Décommenter les @font-face ci-dessous
   4. Mettre à jour les chemins si nécessaire
*/

/* Dx Sillage - Pour les titres */
@font-face {
    font-family: 'Dx Sillage';
    src: url('fonts/DxSillage/Dx Sillage regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Quildge Demo - Pour le corps de texte */
@font-face {
    font-family: 'Quildge Demo';
    src: url('fonts/quilge/Quilge DEMO VERSION.otf') format('opentype'),
         url('fonts/quilge/Quilge DEMO VERSION.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Quildge Demo';
    src: url('fonts/quilge/Quilge Italic DEMO VERSION.otf') format('opentype'),
         url('fonts/quilge/Quilge Italic DEMO VERSION.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* ================================
   APRÈS AVOIR AJOUTÉ LES POLICES
   ================================
   
   Dans style.css, remplacer :
   
   --font-body: 'Be Vietnam Pro', sans-serif;
   
   par :
   
   --font-body: 'Quildge Demo', 'Be Vietnam Pro', sans-serif;
   
   Et pour les titres, ajouter :
   
   h1, h2, h3, h4, h5, h6 {
       font-family: 'Dx Sillage', var(--font-body);
   }
*/
