/**
 * Poppins Font - Self-hosted
 * 
 * Fonts téléchargés depuis: https://gwfh.mranftl.com/fonts/poppins
 * 
 * Instructions:
 * 1. Télécharger les fichiers .woff2 depuis Google Fonts Helper
 * 2. Les placer dans /assets/fonts/
 * 
 * Fichiers requis:
 * - poppins-v20-latin-400.woff2 (regular)
 * - poppins-v20-latin-500.woff2 (medium)
 * - poppins-v20-latin-600.woff2 (semibold)
 * - poppins-v20-latin-700.woff2 (bold)
 * - poppins-v20-latin-800.woff2 (extrabold)
 */

/* poppins-400 - latin (regular) */
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v20-latin-400.woff2') format('woff2');
}

/* poppins-500 - latin (medium) */
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/poppins-v20-latin-500.woff2') format('woff2');
}

/* poppins-600 - latin (semibold) */
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v20-latin-600.woff2') format('woff2');
}

/* poppins-700 - latin (bold) */
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/poppins-v20-latin-700.woff2') format('woff2');
}

/* poppins-800 - latin (extrabold) */
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/poppins-v20-latin-800.woff2') format('woff2');
}