Utilising custom font stack

Yep, you can definitely do that. Just use the @import like you’re doing already, include article in your CSS selector, and add !important, e.g.:

@import url('https://fonts.googleapis.com/css?family=Roboto');

body, article {
    font-family: Roboto, sans-serif !important;
}
1 Like