/* Site typefaces.
   Cute Font  — titles + headings
   Doto Regular — everything else

   size-adjust normalises both to the old Helvetica optical size, so every
   existing font-size value keeps working:
     Helvetica Neue x-height ~517/1000em
     Cute Font       312  -> 517/312 = 1.66  -> 165%
     Doto            500  -> 517/500 = 1.03  -> 103%                        */
@font-face {
  font-family: 'Cute Font';
  src: url('CuteFont-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  size-adjust: 165%;
}
@font-face {
  font-family: 'Doto';
  src: url('Doto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  size-adjust: 103%;
}
