/*
 * fonts.css — Inter + Poppins hébergés localement
 * RGPD compliant — pas de dépendance Google Fonts
 */

/* ── INTER (titres) ── */
@font-face {
    font-family: 'Inter';
    src: url('inter/Inter-Regular.ttf') format('truetype');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('inter/Inter-SemiBold.ttf') format('truetype');
    font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('inter/Inter-Bold.ttf') format('truetype');
    font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('inter/Inter-ExtraBold.ttf') format('truetype');
    font-weight: 800; font-style: normal; font-display: swap;
}

/* ── POPPINS (body) ── */
@font-face {
    font-family: 'Poppins';
    src: url('poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('poppins/Poppins-Italic.ttf') format('truetype');
    font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700; font-style: normal; font-display: swap;
}

/* ── FREDOKA (H1 hero) ── */
@font-face {
    font-family: 'Fredoka';
    src: url('Fredoka-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
