/* Self-hosted Fraunces + Karla, replacing the Google Fonts CDN load.
   Both are variable fonts; several weights below point at the SAME
   physical file per family/style (confirmed identical to what Google's
   own css2 API serves for these exact weights), the browser pins the
   file to the requested weight. index.html uses a wider set (adds 500
   roman + 500 italic Fraunces, 400 italic Karla) than check/type/gift/
   type-interest, this file covers the union so any page can include it.
   See docs/ops/FONT-SELF-HOSTING-PLAN.md. Licenses:
   assets/fonts/licenses/ (SIL Open Font License, both families). */

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/fraunces.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/fraunces.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/assets/fonts/fraunces.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/fraunces-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/karla.woff2') format('woff2');
}
@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/karla.woff2') format('woff2');
}
@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/assets/fonts/karla.woff2') format('woff2');
}
@font-face {
  font-family: 'Karla';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/karla-italic.woff2') format('woff2');
}
