/* Self-hosted, not Google Fonts CDN — one variable-font file per family
   covers every weight (and, for Fraunces, the optical-size axis) used
   anywhere in the app, so this is the only font request per family,
   ever, and it works if the CDN is ever unreachable. Chosen pairing:
   Fraunces (a warm soft-serif, used sparingly for headline moments —
   hero/page titles, the brand wordmark, empty states) against Inter
   (dense, highly legible, carries all UI/body text). */

@font-face{
    font-family:'Fraunces';
    font-style:normal;
    font-weight:400 700;
    font-display:swap;
    src:url('fonts/fraunces-variable.woff2') format('woff2-variations'),
        url('fonts/fraunces-variable.woff2') format('woff2');
}
@font-face{
    font-family:'Inter';
    font-style:normal;
    font-weight:100 900;
    font-display:swap;
    src:url('fonts/inter-variable.woff2') format('woff2-variations'),
        url('fonts/inter-variable.woff2') format('woff2');
}
