/* Bagel Brigade (pId 55262) — site-wide brand font (Topol).
 *
 * A licensed/paid custom font, fully SELF-HOSTED: the .woff2/.woff/.ttf files live in
 * this folder (ported from the CI3 asset dir, where CI3 applied Topol site-wide via
 * `body { font-family:'Topol' }`). Registered in the DB as a private web_fonts row
 * (public = 0, businessId = 55262) whose font_path points here, so only Bagel Brigade
 * can load it. base.php <link>s this file and applies 'Topol' site-wide via the
 * --font-* tokens.
 *
 * src paths are relative to THIS css file (same folder). woff2 first (smallest),
 * then woff, then ttf as the widest fallback.
 */
@font-face {
    font-family: 'Topol';
    src: url('Topol-Light.woff2') format('woff2'),
         url('Topol-Light.woff') format('woff'),
         url('Topol-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Topol';
    src: url('Topol-Regular.woff2') format('woff2'),
         url('Topol-Regular.woff') format('woff'),
         url('Topol-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Topol';
    src: url('Topol-Bold.woff2') format('woff2'),
         url('Topol-Bold.woff') format('woff'),
         url('Topol-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
