Modifying fonts for list in quark - unable to change

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:

// Lists
ul li ol {
  font-family: $base-font-family;
}

… same as I did for paragraphs:

// Paragraphs
p {
  font-family: $base-font-family;
}

But no luck. I feel like I must be missing something obvious?

It was super simple, this needed to be:

ul {
  font-family: $base-font-family;
}

ol {
  font-family: $base-font-family;
}