/* fonts.css — Luminary brand typeface (GT Standard), loaded from the website's shared /fonts/.
 *
 * Overrides the vandv default (Inter / Inter Tight / Roboto Mono) so this sub-site matches the
 * marketing site's typography. Files are served same-origin from /fonts/ (no external/CDN loads),
 * the same faces the rest of luminary.ai uses. Available weights: Light 300, Regular 400,
 * Semibold 600 — requested 500/700 round to the nearest available face.
 *
 * NOTE: this is a website-copy overlay. It is NOT produced by `vandv report`; re-apply it after any
 * re-sync of the V&V site (see the project_vandv_site memory).
 */

/* GT Standard — sans / display */
@font-face {
  font-family: "GT Standard";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src:
    url("/fonts/GT-Standard-L-Standard-Light.woff2") format("woff2"),
    url("/fonts/GT-Standard-L-Standard-Light.woff") format("woff");
}
@font-face {
  font-family: "GT Standard";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    url("/fonts/GT-Standard-L-Standard-Regular.woff2") format("woff2"),
    url("/fonts/GT-Standard-L-Standard-Regular.woff") format("woff");
}
@font-face {
  font-family: "GT Standard";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src:
    url("/fonts/GT-Standard-L-Standard-Semibold.woff2") format("woff2"),
    url("/fonts/GT-Standard-L-Standard-Semibold.woff") format("woff");
}

/* GT Standard Mono — code / labels / numeric */
@font-face {
  font-family: "GT Standard Mono";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src:
    url("/fonts/GT-Standard-Mono-Standard-Light.woff2") format("woff2"),
    url("/fonts/GT-Standard-Mono-Standard-Light.woff") format("woff");
}
@font-face {
  font-family: "GT Standard Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    url("/fonts/GT-Standard-Mono-Standard-Regular.woff2") format("woff2"),
    url("/fonts/GT-Standard-Mono-Standard-Regular.woff") format("woff");
}
@font-face {
  font-family: "GT Standard Mono";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src:
    url("/fonts/GT-Standard-Mono-Standard-Semibold.woff2") format("woff2"),
    url("/fonts/GT-Standard-Mono-Standard-Semibold.woff") format("woff");
}
