/* public/atelier.css */
@import url("https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;700&family=Inter:wght@300;400&display=swap");
:root {
  --bg-depth: #050505;
  --accent: #d4af37;
}
body {
  background-color: var(--bg-depth);
  color: #e5e5e5;
  font-family: "Inter", sans-serif;
}
h1,
h2 {
  font-family: "Crimson Pro", serif;
  color: #fff;
}
a {
  color: var(--accent);
  text-decoration: none;
}
