/* =============================================================================
   fonts.css — Site-wide typography
   =============================================================================
   Loads the project's font(s) and sets typography tokens + defaults.
   Edit @import and --BaseFont to change fonts site-wide.
   ============================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    /* Primary base font — change here to swap typography site-wide */
    --BaseFont:  'Roboto Condensed', 'Inter', system-ui, sans-serif;

    /* Convenience aliases used by other stylesheets */
    --font-sans: var(--BaseFont);
    --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    --font-size: 0.9375rem;
}

/* Apply typography to the document by default */
html {
    font-family: var(--font-sans);
    font-size:   var(--font-size);
    line-height: 1.6;
}
