Faceting *only* Matched Nested Documents. Is it possible?

Hi All! I'm wondering if it would be possible to implement a terms facet
that matches against multiple nested docs, but only displays facet terms
from docs that match all filter criteria.

What we're doing now is, in minimal form something like:

{facet_filter:

{nested:
{"_scope": "label",
path: "labels",
query: {

    filtered: {
      query: 

      match_all: {}

    },

    filter:
    and: [{:term=>{:category=>"Foo"}},
          {:term=>{:brand=>"Bar"}}

The problem we face is that given a document that looks like:

{item:

{labels: [{category: "Foo", brand: "Bar", style: "Smooth"}, {category: "Baz", brand: "Blah", style: "Bold"}]}}

the terms facet will return both "Smooth" and "Bold" under 'style'. Where we'd only like to see "Smooth" because Bold is in an unmatched document.

Is this possible at all in a query against our items index?

--