/* Import de la police moderne Inter depuis Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

/* Définition de base avec la nouvelle police */
@font-face {
  font-family: 'Inter';
  src: 
    url('https://fonts.gstatic.com/s/inter/v12/UcCO3FwrJhPzUbzTohyWo58.ttf') format('truetype'),
    url('https://fonts.gstatic.com/s/inter/v12/UcCO3FwrJhPzUbzTohyWo58.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: 
    url('https://fonts.gstatic.com/s/inter/v12/UcCO3FwrJhPzUbzTohyWo5.ttf') format('truetype'),
    url('https://fonts.gstatic.com/s/inter/v12/UcCO3FwrJhPzUbzTohyWo5.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Application de la police sur le site */
:root {
  --font-family: 'Inter', sans-serif; /* Nouvelle police principale */
}

body {
  font-family: var(--font-family); /* Utilisation de la police moderne */
  line-height: 1.6; /* Espacement amélioré pour la lisibilité */
  color: #333; /* Couleur par défaut pour un contraste optimal */
}
  