/*
 * fonts.css — Self-hosted WaadiFresh brand typeface (FS Pimlico)
 *
 * Loaded LAST in views/layouts/site.php's stylesheet cascade, after the
 * vendored public/assets/vendor/barab/css/style.css. Its :root override
 * below wins by source order (equal-specificity :root selectors resolve
 * last-wins) without editing the vendor theme file directly.
 *
 * Only --title-font and --subtitle-font are overridden here. --body-font
 * (Inter) and --banner-5-title (Bevan) are intentionally left untouched.
 */

@font-face {
    font-family: 'FSPimlico';
    src: url('../fonts/wadifresh/FSPimlico-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FSPimlico';
    src: url('../fonts/wadifresh/FSPimlico-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FSPimlico';
    src: url('../fonts/wadifresh/FSPimlico-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FSPimlico';
    src: url('../fonts/wadifresh/FSPimlico-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

:root {
    --title-font: 'FSPimlico', serif;
    --subtitle-font: 'FSPimlico', serif;
}
