/**
 * Polices personnalisées chargées via @font-face
 * Fichier dédié pour toutes les polices web du site
 */

/* ========================================
   Police Seravek - Format OTF
   ======================================== */

/* Seravek Light (300) */
@font-face {
    font-family: 'Seravek';
    src: url('../fonts/seravek/seravek-light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap; /* Améliore les performances de chargement */
}

/* Seravek Regular (400) */
@font-face {
    font-family: 'Seravek';
    src: url('../fonts/seravek/seravek-regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Seravek Bold (700) */
@font-face {
    font-family: 'Seravek';
    src: url('../fonts/seravek/seravek-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   NOTES :

   1. Fichiers OTF à placer dans :
      /assets/fonts/seravek/

   2. Noms de fichiers requis :
      ✅ seravek-light.otf    (font-weight: 300)
      ✅ seravek-regular.otf  (font-weight: 400)
      ✅ seravek-bold.otf     (font-weight: 700)

   3. Utilisation en CSS :
      .light-text {
          font-family: var(--custom-font);
          font-weight: 300; /* → Light */
      }

      .normal-text {
          font-family: var(--custom-font);
          font-weight: 400; /* → Regular (défaut) */
      }

      .bold-text {
          font-family: var(--custom-font);
          font-weight: 700; /* → Bold */
      }

   4. Pour optimisation (optionnel) :
      - Convertir en WOFF2 : https://cloudconvert.com/otf-to-woff2
      - Meilleur format pour le web (compression ~30%)

   ======================================== */
