/* Polices personnalisées */

/* Exemple pour une police de titres - Remplacez par votre fichier */
@font-face {
  font-family: 'CustomHeading';
  src: url('/fonts/votre-police-titres.woff2') format('woff2'),
       url('/fonts/votre-police-titres.woff') format('woff');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* Exemple pour une police de corps de texte - Remplacez par votre fichier */
@font-face {
  font-family: 'CustomBody';
  src: url('/fonts/votre-police-texte.woff2') format('woff2'),
       url('/fonts/votre-police-texte.woff') format('woff');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* Application des polices personnalisées */
:root {
  /* Décommentez et personnalisez selon vos besoins */
  /* --font-heading: 'CustomHeading', -apple-system, BlinkMacSystemFont, sans-serif; */
  /* --font-body: 'CustomBody', -apple-system, BlinkMacSystemFont, sans-serif; */
}
