But they weren't logging as the browser gets the .woff files last no matter what you do.
There are a lot of suggestions how to organize your css files, when to include them and so on, none of these tackled the problem for me.
Working solution was actually simple.
Make sure that you execute all canvas related js code after the page has stopped loading, so either enclose it in:
window.onload=function(){
YOUR CODE HERE
};
or for jquery:
YOUR CODE HERE
};
$(window).load(function() {
YOUR CODE HERE
});
YOUR CODE HERE
});