/*
 * Self-hosted Inter (variable, latin subset) — spec §10.2.
 * Bundling the font rather than loading it from the Google Fonts CDN means
 * `document.fonts.ready` resolves reliably in the headless PDF worker and
 * there is no font-CDN dependency mid-capture. `font-display: block`
 * prevents a fallback-font flash being captured before Inter is usable.
 * Inter is SIL Open Font License 1.1.
 */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: block;
    src: url('/fonts/Inter-latin.woff2') format('woff2');
}
