/* Strider typography system */
:root {
  --font-body: "Inter";
  --font-display: "Space Grotesk";
  --font-mono: "Geist Mono";
  --font-title: var(--font-display);
}

body,
.font-serif {
  font-family: var(--font-body), -apple-system, BlinkMacSystemFont, "Segoe UI", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-title {
  font-family: var(--font-display), -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.post-body h1,
.post-body h2,
.post-body h3,
.post-body h4,
.post-body h5,
.post-body h6 {
  letter-spacing: -0.025em;
}

code,
kbd,
pre,
samp,
.font-mono {
  font-family: var(--font-mono), ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
