/* Self-hosted brand fonts — Poppins (primary) and Roboto (secondary).
 *
 * WOFF2 files are the `latin` subset pulled from Google Fonts and committed under assets/fonts/, so
 * the site has no runtime dependency on fonts.googleapis.com. Loaded before brand.css.
 *
 * Poppins ships as static per-weight files (400/500/600/700 + 400 italic). Roboto's modern Google
 * Fonts latin build is a single variable file spanning the weight axis, so one @font-face with a
 * weight range covers every weight brand.css asks for.
 *
 * font-display: swap — text paints immediately in the system fallback, then swaps to the brand font
 * once loaded. To re-subset or add weights, re-pull from Google Fonts and drop the new WOFF2 here. */

/* ---- Poppins (primary) ---- */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/poppins-400.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/poppins-400-italic.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/poppins-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/poppins-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/poppins-700.woff2') format('woff2');
}

/* ---- Roboto (secondary) — single variable file across the weight axis ---- */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('../fonts/roboto-variable.woff2') format('woff2');
}
