/* Self-hosted variable fonts for Agile Visa.
   - Inter Variable: 400 to 800 weights from one 47KB file
   - Playfair Display Variable: 700 to 900 weights from one 37KB file
   font-display:swap so text renders in fallback first, then swaps when font loads.
   Eliminates Google Fonts CDN round-trip (~250ms RTT saved on mobile). */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/Inter-Variable.woff2') format('woff2-variations');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
  src: url('/assets/fonts/PlayfairDisplay-Variable.woff2') format('woff2-variations');
}
