/*
  Typography: Fraunces (display serif) + Inter (sans).

  Fraunces was chosen for headlines because it's a variable serif with real
  editorial character — soft ink-trap curves and a slightly high-contrast
  stroke that reads as premium and considered, not a generic system serif
  like Georgia or Times. It signals "established financial firm" the way a
  banker's business card does, without tipping into the overused
  Playfair-Display look most template sites reach for.

  Inter carries all body copy: a highly legible, neutral grotesque built
  specifically for UI and long-form reading at small sizes, with excellent
  hinting on Windows/ClearType. It disappears into the background so
  Fraunces can do the talking in headlines.

  Both are self-hosted as variable fonts (single file covers the full
  weight range) to avoid a third-party font request and keep the site fast
  and dependency-free.
*/

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('../assets/fonts/fraunces-var.woff2') format('woff2-variations'),
       url('../assets/fonts/fraunces-var.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../assets/fonts/inter-var.woff2') format('woff2-variations'),
       url('../assets/fonts/inter-var.woff2') format('woff2');
}
