>>201
I use a greasy monkey to do it.
// ==UserScript==
// @name Kareha IPAMonaPGothic
// @namespace Kareha
// @include http://4-ch.net/*
// @include http://www.secretareaofvipquality.net/saovq/*
// ==/UserScript==
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
// One word, the forced usage of Mona. Thread Over.
addGlobalStyle('.replytext { font-family: IPAMonaPGothic !important }');