/* Self-hosted Oxygen (site-wide base font, see body{font-family} in custom.css).
   Replaces the Google Fonts CSS+woff2 two-hop chain with a same-origin file,
   so the browser can fetch the font in parallel with everything else instead
   of discovering it via a second cross-origin round trip. Only the weights
   Oxygen actually ships (300/400/700 normal - no 600/800/900/italic exist
   for this family; browsers fall back to the nearest available weight for
   those) are included. */
@font-face {
    font-family: 'Oxygen';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('oxygen-300.woff2') format('woff2');
}
@font-face {
    font-family: 'Oxygen';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('oxygen-400.woff2') format('woff2');
}
@font-face {
    font-family: 'Oxygen';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('oxygen-700.woff2') format('woff2');
}
