/* Paths are relative to this file (app/static/css/); the woff files live in
   app/static/fonts/neufile_grotesk/, so they need the ../fonts/ prefix — the
   same form font_pp_fragment.css uses. Without it the browser requests
   /static/css/NeufileGrotesk-*.woff2, gets a 404 and silently falls back. */
@font-face {
    font-family: 'Neufile Grotesk';
    src: url('../fonts/neufile_grotesk/NeufileGrotesk-Light.woff2') format('woff2'),
        url('../fonts/neufile_grotesk/NeufileGrotesk-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neufile Grotesk';
    src: url('../fonts/neufile_grotesk/NeufileGrotesk-Bold.woff2') format('woff2'),
        url('../fonts/neufile_grotesk/NeufileGrotesk-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
