/* ============================================================
   fonts.css — @font-face declarations ONLY
   Files live in /Fonts (capital F — Netlify/Linux is
   case-sensitive, do not change the casing).
   Only the weights/styles actually used in the design are
   declared, each pointing at the real static file so that
   e.g. font-weight:600 loads the true SemiBold, not a faux-bold.
   ============================================================ */

/* ---------- Playfair Display (serif headings) ---------- */
@font-face {
  font-family: "Playfair Display";
  src: url("../Fonts/Playfair_Display/static/PlayfairDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../Fonts/Playfair_Display/static/PlayfairDisplay-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ---------- Source Sans 3 (sans body / UI) ---------- */
@font-face {
  font-family: "Source Sans 3";
  src: url("../Fonts/Source_Sans_3/static/SourceSans3-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("../Fonts/Source_Sans_3/static/SourceSans3-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("../Fonts/Source_Sans_3/static/SourceSans3-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("../Fonts/Source_Sans_3/static/SourceSans3-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("../Fonts/Source_Sans_3/static/SourceSans3-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
