/* ==============================================
   fonts.css — Déclarations @font-face
   Toutes tes webfonts locales sont ici.
   Pour ajouter une nouvelle fonte :
     1. Dépose les fichiers .woff/.woff2 dans assets/fonts/
     2. Ajoute un bloc @font-face ci-dessous
   ============================================== */


/* National — Book
   Usage CSS : font-family: 'National', sans-serif; font-weight: 400;
   ------------------------------------------------------------------- */
@font-face {
    font-family:  'National';
    src:          url('../fonts/national-book-webfont.woff2') format('woff2'),
                  url('../fonts/national-book-webfont.woff')  format('woff');
    font-weight:  400;
    font-style:   normal;
    font-display: swap;
}


/* Rockeby CD — Bold
   Usage CSS : font-family: 'RockebyCd', sans-serif; font-weight: 700;
   -------------------------------------------------------------------- */
@font-face {
    font-family:  'RockebyCd';
    src:          url('../fonts/rockebycd-bold-webfont.woff2') format('woff2'),
                  url('../fonts/rockebycd-bold-webfont.woff')  format('woff');
    font-weight:  700;
    font-style:   normal;
    font-display: swap;
}


/* Shrikhand — Regular
   Usage CSS : font-family: 'Shrikhand', serif; font-weight: 400;
   --------------------------------------------------------------- */
@font-face {
    font-family:  'Shrikhand';
    src:          url('../fonts/shrikhand-regular-webfont.woff2') format('woff2'),
                  url('../fonts/shrikhand-regular-webfont.woff')  format('woff');
    font-weight:  400;
    font-style:   normal;
    font-display: swap;
}
