[RESOLVIDO] similar ao c:url no jsf 2

Estava acostumado a utilizar a JSTL c:url pra definir o caminho dos links, mas não estou conseguindo utiliza-la nesse projeto com jsf.
A idéia era mapear um arquivo css utilizando o c:url, mas recebo um erro:

Tag Library supports namespace: http://java.sun.com/jsp/jstl/core, but no tag was defined for name: url
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<h:html xmlns="http://www.w3.org/1999/xhtml"
		xmlns:h="http://java.sun.com/jsf/html"
		xmlns:c="http://java.sun.com/jsp/jstl/core">
<h:head>

<link rel="stylesheet" type="text/css" href='<c:url value="/style.css" />' />
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>Projeto Teste</title>
</h:head>
<h:body>
	
</h:body>
</h:html>

existe algum código similar em jsf ou um jeito de utilizar o c:url?

Encontrei por acaso a tag que precisava.

<h:outputStylesheet name="common-style.css" library="css" />