/* ==============================================
   assets/css/fonts.css
   Version 1.2
   03/08/2026 11:00
   Cuisine pas à pas
   ==============================================
   But principal : déclarations @font-face locales (Baloo 2 + Nunito + Fredoka, sous-ensemble latin)
                   remplace l'appel à Google Fonts CDN — pointe vers les fichiers .woff2
                   vendorisés dans assets/vendor/fonts/
   ============================================== */

@font-face {
    font-family: 'Baloo 2';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../vendor/fonts/baloo2/500.woff2') format('woff2');
}

@font-face {
    font-family: 'Baloo 2';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../vendor/fonts/baloo2/600.woff2') format('woff2');
}

@font-face {
    font-family: 'Baloo 2';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../vendor/fonts/baloo2/700.woff2') format('woff2');
}

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../vendor/fonts/nunito/400.woff2') format('woff2');
}

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../vendor/fonts/nunito/600.woff2') format('woff2');
}

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../vendor/fonts/nunito/700.woff2') format('woff2');
}

@font-face {
    font-family: 'Fredoka';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../vendor/fonts/fredoka/500.woff2') format('woff2');
}

@font-face {
    font-family: 'Fredoka';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../vendor/fonts/fredoka/600.woff2') format('woff2');
}

@font-face {
    font-family: 'Fredoka';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../vendor/fonts/fredoka/700.woff2') format('woff2');
}

/* ==============================================
   Historique des modifications :
   - Version 1.0 - 02/08/2026 17:10 : création du fichier (Lot 0 — habillage visuel)
   - Version 1.1 - 03/08/2026 10:46 : ajout de Fredoka (500/600/700) pour l'accueil reconstruit sur test.html
   - Version 1.2 - 03/08/2026 11:00 : déplacé de assets/vendor/fonts/ vers assets/css/ (ce n'est pas un fichier tiers, seulement les .woff2 qu'il référence le sont) ; chemins url() mis à jour en conséquence
   ============================================== */
