/* =====================================================================
   ARKE CREATIVE — Fonts
   ---------------------------------------------------------------------
   Brand typeface: GILROY (geometric sans, matches the logo letterforms).
   Real Gilroy .otf files supplied: Light (300), Regular (400),
   SemiBold (600), Bold (700).

   NOTE: Medium (500) and Heavy were NOT supplied. Weight 500 (captions /
   eyebrows) falls back to the nearest available face; supply
   Gilroy-Medium.otf to render it true.
   ===================================================================== */

@font-face {
  font-family: "Gilroy";
  src: url("Gilroy-Light.otf") format("opentype");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("Gilroy-Regular.otf") format("opentype");
  font-weight: 400; font-style: normal; font-display: swap;
}
/* Medium (500) not supplied — map to Regular so 500 stays legible. */
@font-face {
  font-family: "Gilroy";
  src: url("Gilroy-Regular.otf") format("opentype");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("Gilroy-SemiBold.otf") format("opentype");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("Gilroy-Bold.otf") format("opentype");
  font-weight: 700; font-style: normal; font-display: swap;
}
