@import "tailwindcss";

@theme {
  --font-display: "Playfair Display", Georgia, serif;
  --font-serif: "Source Serif 4", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
}

/* Custom components */
.masthead {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.story-headline {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

.story-body {
  font-family: var(--font-serif);
  line-height: 1.7;
}

.btn-primary {
  @apply bg-stone-900 text-white px-6 py-3 font-medium hover:bg-stone-800 transition-colors;
}

.btn-secondary {
  @apply border border-stone-900 text-stone-900 px-6 py-3 font-medium hover:bg-stone-100 transition-colors;
}
