html`
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap" rel="stylesheet">
<style>
@font-face {
/* https://github.com/TypeNetwork/Amstelvar */
/* using the gstatic uploads created by observablehq.com/@jmahabal/variable-fonts-playground */
/* easier than uploading my own but might be the source of some discrepancies with dev docs? */
/* also possibly the reason I can't use "font-variation-settings: normal" and need to define each individually */
font-family: 'Amstelvar';
src: url(//fonts.gstatic.com/ea/amstelvaralpha/v2/AmstelvarAlpha-VF.eot);
src: url(//fonts.gstatic.com/ea/amstelvaralpha/v2/AmstelvarAlpha-VF.eot?#iefix) format('embedded-opentype'),
url(//fonts.gstatic.com/ea/amstelvaralpha/v2/AmstelvarAlpha-VF.woff2) format('woff2'),
url(//fonts.gstatic.com/ea/amstelvaralpha/v2/AmstelvarAlpha-VF.woff) format('woff'),
url(//fonts.gstatic.com/ea/amstelvaralpha/v2/AmstelvarAlpha-VF.ttf) format('truetype');
font-weight: 300 900;
font-stretch: 35% 100%;
font-style: normal;
font-display: swap;
}
.background {fill: #fffbeb; background-color: #fffbeb;}
.title {
font: 24px "Lato", sans-serif;
fill: #263c54;
font-weight: 700;
}
.other {
font: 20px "Lato", sans-serif;
fill: #263c54;
font-weight: 400;
}
.chart {
font-family: "Amstelvar", serif;
--text-wght: 80;
--text-wdth: 400;
--text-YTLC: 400;
}
.word {
fill: #263c54;
font-variation-settings: 'wght' var(--text-wght),
'wdth' var(--text-wdth),
'YTLC' var(--text-YTLC);
}
</style>`