/* DeskPost — self-hosted fonts
   Replaces Google Fonts CDN. Drop these woff2 files alongside this CSS:
     dm-sans-400.woff2
     dm-sans-500.woff2
     dm-sans-700.woff2
     playfair-display-700.woff2
     playfair-display-800.woff2
     playfair-display-900.woff2
   Source: https://fonts.google.com (download family → extract woff2 only)
   Or: https://google-webfonts-helper.herokuapp.com/  (easier — gives ready zip)
*/

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('dm-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('dm-sans-500.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('dm-sans-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('playfair-display-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('playfair-display-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('playfair-display-900.woff2') format('woff2');
}
