/*
 * Self-hosted faces. One family only: DM Sans, the same family the UI uses for
 * both body copy and display text. Weights 400/500/600/700 cover the whole
 * hierarchy (400 body, 500 hero accent, 600 headings, 700 labels and wordmark).
 *
 * The preload list in templates/base.html is derived from this file and from the
 * weights the stylesheets request, by font_manifest.py -- never by hand. Retiring a
 * face means deleting its @font-face block and its woff2 together; leaving either
 * behind fails `python font_manifest.py` and the test suite, and logs a warning at
 * boot instead of quietly shipping the dead weight.
 */
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/static/vendor/fonts/dm-sans-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/static/vendor/fonts/dm-sans-latin-500-normal.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/static/vendor/fonts/dm-sans-latin-600-normal.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/static/vendor/fonts/dm-sans-latin-700-normal.woff2") format("woff2");
}
