/* fonts.css — Fraunces + Inter, self-hosted (files in this same folder)
   instead of loaded from Google's CDN. Avoids sending every visitor's IP
   address to Google just to render text — a real UK/EU GDPR consideration
   for a public-facing page, not something the internal admin app (used
   only by Cristina/Luis) needs to worry about the same way. Both are
   variable fonts, so one file each covers every weight used on the site. */

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url('fraunces-var.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('inter-var.woff2') format('woff2');
}
