/* =====================================================================
   Global typography.
   Primary  : Hanken Grotesk (neo-grotesque, free alternative to Neue Montreal)
   Secondary: Inter (used for tabular data / numbers)
   The font files are loaded from Google Fonts via <link> in _Layout.cshtml
   and Login/Index.cshtml. This file only wires the families into the app.
   Loaded BEFORE styles.css so the --bs-font-sans-serif override wins.
   ===================================================================== */

:root {
    --bs-font-sans-serif: 'Hanken Grotesk', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --bs-body-font-family: var(--bs-font-sans-serif);
    --font-secondary: 'Inter', system-ui, sans-serif;
}

/* Secondary font for tabular data: cleaner figures in tables/grids */
.p-datatable,
.table,
.font-secondary {
    font-family: var(--font-secondary);
}
