/*
 * fhr-child webfonts — self-hosted (Phase 6A Task 1).
 *
 * Cormorant Garamond (headings), Work Sans (body/UI) and IBM Plex Mono
 * (eyebrows/labels) are bundled as local woff2 files under ./files/ — no
 * Google Fonts network dependency at runtime (speed + privacy; the site is
 * tuned for Core Web Vitals). Cormorant Garamond and Work Sans ship as
 * variable-font files, so ONE file each covers their whole weight range
 * (400-600 / 300-600) instead of one download per weight.
 *
 * Georgia/system fallbacks are baked into the --serif/--sans/--mono custom
 * properties in style.css, so text renders correctly even if this
 * stylesheet fails to load or a browser can't parse it.
 */

@font-face{
  font-family:'Cormorant Garamond';
  font-style:normal;
  font-weight:400 600;
  font-display:swap;
  src:url('files/cormorant-garamond-normal-variable.woff2') format('woff2');
}
@font-face{
  font-family:'Cormorant Garamond';
  font-style:italic;
  font-weight:400;
  font-display:swap;
  src:url('files/cormorant-garamond-italic-400.woff2') format('woff2');
}
@font-face{
  font-family:'Work Sans';
  font-style:normal;
  font-weight:300 600;
  font-display:swap;
  src:url('files/work-sans-normal-variable.woff2') format('woff2');
}
@font-face{
  font-family:'IBM Plex Mono';
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url('files/ibm-plex-mono-normal-400.woff2') format('woff2');
}
