``css
--font-copy: 'Literata', Georgia, 'Times New Roman', serif;
}
Once I have a stronger idea of the typefaces I'm using, I should try to find some common fallbacks that render more similarly to the web fonts I'm using so the font swap is less jarring.
I should also consider providing the regular version of the main font as a fallback when loading specialist versions. Eg.
```css
--font-caption: 'Literata Caption', 'Literata', Gerogia...
The current fallback stack is simplistic:
``css --font-copy: 'Literata', Georgia, 'Times New Roman', serif; }