/**
 * Open Sans - Self-hosted WOFF2 fonts.
 *
 * Part of SOINTE Web v2.0 - Astro Migration
 *
 * Self-hosted to avoid Google Fonts CDN (GDPR compliance, no third-party requests).
 * Weights: 300 (light), 400 (regular), 500 (medium), 600 (semibold), 700 (bold).
 *
 * @see src/layouts/BaseLayout.astro    Font loading
 * @see src/styles/global.css           --font-sans definition
 */

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('./open-sans-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./open-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('./open-sans-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('./open-sans-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('./open-sans-700.woff2') format('woff2');
}
