Loads font "Red Hat Text" that many pages ask for but are missing.
// ==UserScript==
// @name Use Red Hat Text font
// @namespace https://github.com/nate-kean/
// @version 20251030
// @description Loads font "Red Hat Text" that many pages ask for but are missing.
// @author Nate Kean
// @match https://jamesriver.fellowshiponego.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=fellowshiponego.com
// @grant none
// @license MIT
// ==/UserScript==
(function() {
document.head.insertAdjacentHTML("beforeend", `
<link href="https://fonts.googleapis.com/css?family=Red+Hat+Text:400,600,700" rel="stylesheet">
`);
})();