Font not working on paginated pages

The font defaults to Arial on paginated pages 2 and above. Font saved in static folder.

@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('../fonts/jost-v12-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/jost-v12-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
:root {
    --font-family: jost, Helvetica Neue, Helvetica, Arial, sans-serif;
}
body {
    font-family: var(--font-family)
}

Removed the dots in url(../fonts/...) to url('/fonts...) and all good now.

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.