/* ---------------------------------------------------------------------
   Oliver Label — pencil-textured SVG font (Jen Wagner Co.)
   This file is served statically from /public so CRA's webpack
   css-loader doesn't try to resolve the absolute `/fonts/...` URLs as
   module imports.
   - PRIMARY: OliverLabel-SVG.otf (OpenType-SVG, each glyph embeds the
     actual pencil texture). 4.5 MB, lazy-loaded by the browser.
   - FALLBACK: OliverLabel-Regular.woff2 (vector outline, no embedded
     texture but same letterforms) for browsers that don't honour OT-SVG.
--------------------------------------------------------------------- */
@font-face {
    font-family: "Oliver Label";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src:
        url("/fonts/OliverLabel-SVG.otf") format("opentype"),
        url("/fonts/OliverLabel-Regular.woff2") format("woff2"),
        url("/fonts/OliverLabel-Regular.woff") format("woff");
}

/* ---------------------------------------------------------------------
   fzm Embossed — vintage Dymo embossing-label font (fuzzimo.com, 2012)
   License: free for personal + commercial use, redistribution allowed.
   See /fonts/fzm-Embossed-LICENSE.txt for the full license terms.
   - Label variant: each glyph includes the full embossed-tape look.
   - Text variant: just the embossed letter (no surrounding tape).
   Both are registered so we can mix as needed across the corkboard UI.
--------------------------------------------------------------------- */
@font-face {
    font-family: "fzm Embossed Label";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/fonts/fzm-Embossed-Label.woff2") format("woff2");
}
@font-face {
    font-family: "fzm Embossed Label";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url("/fonts/fzm-Embossed-Label-Light.woff2") format("woff2");
}
@font-face {
    font-family: "fzm Embossed Text";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/fonts/fzm-Embossed-Text.woff2") format("woff2");
}
@font-face {
    font-family: "fzm Embossed Text";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url("/fonts/fzm-Embossed-Text-Light.woff2") format("woff2");
}

