I am changing the font of a {gt} table and it looks fine in the RStudio preview but reverts to the default font when I render to HTML with Quarto. I've tried it a couple of ways and none of them work. I'm on Linux Mint 20
Minimal example
---
title: "qt error"
format: html
---
```{r}
library(gt)
exibble |>
gt() |>
opt_table_font(google_font(name = "Merriweather"))
exibble |>
gt() |>
tab_options(table.font.names = "Georgia")
```