/**
 * @file
 * SproetSivero Olivero overrides - Custom GAP fonts integration
 */

/* Standard root declaration */
:root {
  /* Override Olivero's font variables with GAP fonts */
  --font-sans: "GAPZuidVG", Verdana, sans-serif;
  --font-serif: "GAPZuidVG", Verdana, sans-serif;
  
  /* Add custom monospace font variable */
  --font-mono: "GAPMono", Consolas, monospace;
}

/* Ensure headings use proper font weight */
h1, h2, h3, h4, h5, h6,
.heading,
.site-name,
.page-title,
.node-title,
.block-title {
  font-weight: 700;
}

/* Apply monospace font to code elements */
code,
kbd,
pre,
samp,
var,
.monospace {
  font-family: var(--font-mono);
}
