/* Self-hosted fonts (latin subset, variable). First-party + preloaded so the
   webface is present at first paint — no swap, no layout shift.
   font-display: optional locks the fallback if the font misses the ~100ms
   window, guaranteeing zero font-driven CLS either way. */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600 800;
  font-display: optional;
  src: url('/fonts/jakarta-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: optional;
  src: url('/fonts/inter-latin.woff2') format('woff2');
}
