/* XENITY sitewide typography — Outfit (display), Inter (body), JetBrains Mono (labels/code) */
:root {
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

html {
  font-family: var(--font-body);
}

body,
button,
input,
textarea,
select {
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.hero-sub-title,
.section-title,
.section-label,
.hero-badge,
.site-logo,
.brand-title,
.page-title,
.top h1,
.admin-header h1,
.card-title {
  font-family: var(--font-display);
}

code,
kbd,
pre,
samp,
.font-mono,
[style*="font-family:monospace"],
[style*="font-family: monospace"] {
  font-family: var(--font-mono) !important;
}
