/* ═══════════════════════════════════════════════════════════════════════════
   Polices auto-hébergées — Manrope + Inter (RGPD : aucun appel à Google Fonts).
   Déposer 2 fichiers woff2 VARIABLES dans public/assets/fonts/ :
     • manrope.woff2   (Manrope, axe wght, sous-ensemble latin + latin-ext)
     • inter.woff2     (Inter,   axe wght, sous-ensemble latin + latin-ext)
   Source conseillée : fontsource (fichiers "*-wght-normal.woff2"), à renommer.
   Tant que les fichiers sont absents : repli automatique sur la police système
   (aucune erreur visible, aucun appel externe). font-display:swap = pas de texte
   invisible pendant le chargement.
   ═══════════════════════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/manrope.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/inter.woff2') format('woff2');
}
