/* Redtail Labs Brand — design system entry stylesheet.
   Rendered designs receive this file's transitive @import closure, so every
   brand token and the brand typeface are reachable from here. */
@import "./tokens/fonts.css";
@import "./tokens/colors.css";

:root {
  color-scheme: dark;
}

body {
  background: var(--color-page-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}

::selection {
  background: var(--color-brand-red);
  color: #ffffff;
}
