/* Self-hosted brand fonts (SIL Open Font License 1.1).
   Playfair Display (headings) + Montserrat (body). Font files and their OFL
   licenses live in /static/fonts/. Served by the app itself — no third-party
   font CDN, so no client-engagement metadata leaks (PROJECT_BRIEF §12), and the
   app renders identically offline. font-display: swap keeps text visible while
   the face loads; system fallbacks in app.css cover the brief window. */

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("/static/fonts/PlayfairDisplay-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("/static/fonts/PlayfairDisplay-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("/static/fonts/Montserrat-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/static/fonts/Montserrat-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/static/fonts/Montserrat-Bold.ttf") format("truetype");
}
