/* fonts.css - James Hansen
   Display / heading face is the site's original LRTOksana (local TTF, kept
   from the old design). Body text is Inter, loaded from Google Fonts in
   index.php with font-display:swap. Timeless stays registered only as an
   offline fallback for the headings. */

:root {
    --font-display: 'LRTOksana', Perpetua, serif;
    --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

@font-face {
    font-family: 'LRTOksana';
    src: url('fonts/lrtoksana.ttf');
    font-display: swap;
}

@font-face {
    font-family: 'Timeless';
    src: url('fonts/timeless.ttf');
    font-display: swap;
}
