/*
 * Self-hosted Fraunces + Inter, per the brief (no Google Fonts CDN).
 *
 * NOTE: the actual .woff2 files are NOT included yet — download them from
 * https://fonts.google.com/specimen/Fraunces and .../Inter (both OFL
 * licensed, self-hosting is allowed) and drop the static weights below into
 * public_html/assets/fonts/fraunces/ and .../inter/. Until then the
 * font-face rules simply fail to load and the browser falls back to the
 * system stacks listed second in each var below, so the site still renders
 * correctly — just not in the final brand typeface.
 */

@font-face {
    font-family: 'Fraunces';
    src: url('/assets/fonts/fraunces/fraunces-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Fraunces';
    src: url('/assets/fonts/fraunces/fraunces-500-italic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/inter/inter-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/inter/inter-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
