/* Moon Dog Atlas — display typeface
   Geometric art-deco caps drawn from the wordmark lettering.
   Usage: <link rel="stylesheet" href="/assets/fonts/moon-dog-atlas.css">
   then set `font-family: "Moon Dog Atlas", sans-serif;` (or use --display below). */

@font-face {
  font-family: "Moon Dog Atlas";
  font-style: normal;
  font-weight: 400 500;            /* single master; usable across this range */
  font-display: swap;
  src: url("MoonDogAtlas-Regular.woff2") format("woff2"),
       url("MoonDogAtlas-Regular.woff")  format("woff"),
       url("MoonDogAtlas-Regular.ttf")   format("truetype");
}

:root {
  /* opt-in display family for headings / the wordmark */
  --display: "Moon Dog Atlas", "Fraunces", Georgia, serif;
}

/* convenience helper — geometric caps read best with a little tracking,
   matching the spacing of the original wordmark */
.mda-display {
  font-family: "Moon Dog Atlas", sans-serif;
  text-transform: uppercase;      /* the face is all-caps; lowercase maps to caps anyway */
  letter-spacing: 0.06em;
  font-feature-settings: normal;
}
