/*
 * Self-hosted font declarations
 * GDPR-compliant: no external requests to Google Fonts servers.
 * Files: /assets/fonts/ — Oswald (500/600/700) + Inter (400/500/600/700)
 *
 * How to get these files:
 *   1. Go to https://fonts.google.com/specimen/Oswald
 *      Download → select Medium (500), SemiBold (600), Bold (700)
 *      Convert TTF → WOFF2 at https://cloudconvert.com/ttf-to-woff2
 *   2. Go to https://fonts.google.com/specimen/Inter
 *      Download → select "Inter 24pt" variants: Regular (400), Medium (500), SemiBold (600), Bold (700)
 *      Convert TTF → WOFF2
 *   Place WOFF2 files in /assets/fonts/ matching the src paths below.
 *
 * Bird Promotions v2.0.0
 */

/* ── OSWALD DISPLAY ── */

@font-face {
  font-family: 'Oswald';
  src:  url('../fonts/oswald-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oswald';
  src:  url('../fonts/oswald-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oswald';
  src:  url('../fonts/oswald-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ── INTER BODY ── */

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

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

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

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