If you can still do the same thing I would, it is the best/easiest way to do it.
If your use-case requires that it be loaded dynamically, you could use
some JSNI.
private native void loadCSS (String cssHref) /*-{
document.write('<link rel="stylesheet" type="text/css" href="' +
cssHref + '">');
}-*/;