/**
 * Fonts personnalisées - Le Ballon Publicitaire
 *
 * Déclaration des polices custom hébergées localement.
 *
 * - Couture       : police propriétaire pour menu et titres display (Bold uniquement)
 * - Helvetica Neue : police principale du site (Light 300, Medium 500, Bold 700)
 * - Bebas Neue    : police display (Regular 400)
 * - Open Sans     : police de support (Regular 400, Bold 700)
 *
 * @version 0.8.0
 */


/* ============================================
   COUTURE - Bold (700)
   ============================================ */

@font-face {
    font-family: 'Couture';
    src: local('Couture Bold'),
         url('../fonts/Couture-Bold.woff2') format('woff2'),
         url('../fonts/Couture-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Couture';
    src: local('Couture Bold Italic'),
         url('../fonts/Couture-BoldItalic.woff2') format('woff2'),
         url('../fonts/Couture-BoldItalic.woff') format('woff');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}


/* ============================================
   HELVETICA NEUE - Light (300)
   ============================================ */

@font-face {
    font-family: 'Helvetica Neue';
    src: local('Helvetica Neue Light'),
         local('HelveticaNeue-Light'),
         url('../fonts/HelveticaNeue-Light.woff2') format('woff2'),
         url('../fonts/HelveticaNeue-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


/* ============================================
   HELVETICA NEUE - Medium (500)
   Sert aussi de "regular" puisque pas de variante 400
   ============================================ */

@font-face {
    font-family: 'Helvetica Neue';
    src: local('Helvetica Neue Medium'),
         local('HelveticaNeue-Medium'),
         url('../fonts/HelveticaNeue-Medium.woff2') format('woff2'),
         url('../fonts/HelveticaNeue-Medium.woff') format('woff');
    font-weight: 400 500;       /* range : couvre regular ET medium */
    font-style: normal;
    font-display: swap;
}


/* ============================================
   HELVETICA NEUE - Bold (700)
   ============================================ */

@font-face {
    font-family: 'Helvetica Neue';
    src: local('Helvetica Neue Bold'),
         local('HelveticaNeue-Bold'),
         url('../fonts/HelveticaNeue-Bold.woff2') format('woff2'),
         url('../fonts/HelveticaNeue-Bold.woff') format('woff');
    font-weight: 600 700;       /* range : couvre semibold ET bold */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/open-sans-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/open-sans-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* ============================================
   BEBAS NEUE - Regular (400)
   Auto-hébergée pour éviter Google Fonts (RGPD + perf)
   ============================================ */

@font-face {
    font-family: 'Bebas Neue';
    src: url('../fonts/bebas-neue.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}