/*
 * Inter font family — self-hosted via @fontsource/inter@5.0.21 (MIT
 * licensed, Open Font License). Replaces external Google Fonts loads
 * across all static views so the shipped buyer ZIP makes zero
 * external Google Fonts requests at runtime.
 *
 * Four weights cover every existing usage in the codebase:
 *   400 — body / default
 *   500 — emphasis
 *   600 — semibold (subheadings, buttons)
 *   700 — bold (headings)
 *
 * Latin subset only (English-first product; Filament uses its own
 * variable font for non-Latin scripts).  font-display: swap to keep
 * Largest-Contentful-Paint fast even on slow connections.
 */

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('inter-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('inter-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('inter-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('inter-700.woff2') format('woff2');
}
