@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=DM+Sans:wght@300;400;500&family=DM+Mono&display=swap');

:root {
  --bg: #0c0c0e;
  --surface: #131316;
  --surface-2: #1a1a1f;
  --accent: #c8a96e;
  --text: #e8e8e4;
  --text-muted: #666;
  --border: #2a2a2e;
  --radius: 6px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--bg); color: var(--text); font-family: 'DM Sans', sans-serif; }
h1, h2, h3 { font-family: 'DM Serif Display', serif; }
code, time { font-family: 'DM Mono', monospace; font-size: 0.875em; }
a { color: var(--accent); text-decoration: none; }
