/* Self-hosted copy of the Dancing Script font, used by the "All About
   Competencies" flourish in the Compazable brand lockup on the public
   marketing homepage (templates/marketing_home.html). Vendored the same
   way as ../manrope/manrope.css, for the same reason: mini.py's CSP
   deliberately does not allow loading fonts from fonts.googleapis.com/
   fonts.gstatic.com (see mini.py's Content-Security-Policy comment,
   "issue register M1"), so every font this app uses has to live under
   /static/vendor/ instead of being linked from Google's CDN. Only the
   "latin" unicode subset is kept - one variable-weight woff2 file covers
   every weight the design actually uses (600/700). */
@font-face {
  font-family: 'Dancing Script';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(dancing-script-latin.woff2) format('woff2');
}
