/**
 * PianoMode self-hosted brand fonts.
 *
 * Fraunces (editorial display face, hero and section titles) and Montserrat (UI
 * body face) as variable woff2, latin subset, served from the theme. These match
 * the family names the design system already references
 * (--pm-font: 'Montserrat', --pm-font-display: 'Fraunces') and the file names the
 * <head> preload expects, so they light up the moment this folder exists.
 *
 * font-display: swap means text paints immediately in the fallback stack and
 * swaps to the brand face once loaded (no invisible text, no layout block).
 *
 * Licenses: both fonts are SIL Open Font License 1.1 (redistributable). Files
 * come from the Fontsource variable packages.
 */

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-display: swap;
    font-weight: 100 900; /* variable weight axis */
    src: url('montserrat-latin-wght-normal.woff2') format('woff2');
}

@font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-display: swap;
    font-weight: 100 900; /* variable weight axis */
    src: url('fraunces-latin-opsz-normal.woff2') format('woff2');
}
