/* ============================================================
   fonts.css — single source of truth for Menevo typography
   ============================================================
   Goal: keep @font-face declarations and the brand font stack
   in one place so that adopting (or replacing) the definitive
   web font in the future is a drop-in change in this file.

   Current state: "Poppins" is THE platform font on every device
   (loaded per-page via Google Fonts <link>) — Century Gothic was
   dropped from the stacks on 2026-07-12 so rendering is identical
   everywhere; the system stack covers the loading gap.

   When the brand font is finalized, uncomment the placeholder
   block below and prepend the chosen family to --font.
   ============================================================ */

/* Placeholder for the future brand @font-face. Keep commented
   until the asset is available under /frontend/fonts/.
@font-face {
    font-family: 'BrandFont';
    src: url('../../fonts/BrandFont.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
