I managed to change the fonts of quark as I explain here. However, the fonts in lists appear to still to the fallback font. I tried to change this by adding the following in my custom typography.scss:
SCSS
// Lists
ul li ol {
font-family: $base-font-family;
}
... same as I did for paragraphs:
CSS
// Paragraphs
p {
font-family: $base-font-family;
}
But no luck. I feel like I must be missing something obvious?