@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/fonts/cormorant-garamond-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('/fonts/cormorant-garamond-300italic.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/fonts/dm-mono-300.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/dm-mono-400.woff2') format('woff2');
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-mono: 'DM Mono', 'Courier New', monospace;
  --color-text: #1a1a18;
  --color-muted: #888780;
  --color-border: rgba(26,26,24,0.12);
  --color-bg: #faf9f7;
  --color-hover: #f3f1ee;
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-text: #e8e6e0;
    --color-muted: #888780;
    --color-border: rgba(232,230,224,0.12);
    --color-bg: #141412;
    --color-hover: #1e1e1b;
  }
}

html { background: var(--color-bg); color: var(--color-text); }
body { font-family: var(--font-mono); font-weight: 300; min-height: 100vh; display: flex; flex-direction: column; }
a { color: inherit; text-decoration: none; }
