/* Self-hosted brand fonts — OQ1 cutover (2026-04-25).
 * Replaces Google Fonts CDN. Source files: latin subset, woff2.
 *
 * Loaded site-wide via templates/partials/design_head.html.
 * Templates that load this directly should drop their hardcoded
 * fonts.googleapis.com <link> tags.
 *
 * Subset: latin only.
 */

/* Poppins — primary UI face (every page) */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/static/fonts/poppins/Poppins-Light.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/static/fonts/poppins/Poppins-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/static/fonts/poppins/Poppins-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/static/fonts/poppins/Poppins-SemiBold.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/static/fonts/poppins/Poppins-Bold.woff2') format('woff2');
}

/* Playfair Display — landing page accents (templates/index.html) */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/static/fonts/playfair-display/PlayfairDisplay-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('/static/fonts/playfair-display/PlayfairDisplay-MediumItalic.woff2') format('woff2');
}
