/*
 * Inter font (self-hosted) — RGPD/CNIL : aucune requête tierce.
 * Licence : SIL Open Font License v1.1 (voir LICENSE.txt).
 * Source : https://rsms.me/inter/ (poids 400/600/700, format woff2).
 *
 * Pourquoi self-host plutôt que fonts.googleapis.com :
 *   - Évite l'envoi de l'IP / User-Agent à Google avant consentement cookies
 *     (CNIL délib. 2020-091, LG München Az. 3 O 17493/20).
 *   - Supprime 2 connexions tierces du chemin critique (perf).
 *   - Élimine le risque de panne d'un service externe.
 */

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('Inter-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('Inter-SemiBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('Inter-Bold.woff2') format('woff2');
}