Imagine you're a teacher who gives students an open-book exam — but the answer to every question is printed verbatim in the passage they're allowed to read. Every student scores 90%+. You declare your teaching method a breakthrough. Then someone points out that a photocopier would score higher. That's the core finding of this paper: when language models answer questions using graph-based retrieval over curated corpora, the massive jump in recall isn't evidence of reasoning over the retrieved structure — it's evidence that the context already contains the answer in plain sight. The committed claim: current evaluation of ontology-grounded generation conflates exposure (the answer is literally in the context window) with reasoning (the model inferred something from the structure). The paper introduces "exposure accounting," which classifies each gold answer by whether the shown context exposes it and whether the model recovers it. The scalar reference is the "copy ceiling" — the recall a verbatim copy-paste of the context would achieve. Across ten models, unaided recall averages 0.26 and grounded recall averages 0.92, but gain over copy is uniformly negative: -0.067 to -0.022. Every model underperforms a photocopier. The numbers are stark. Of 11,360 gold-item observations (1,136 target instances × 10 models), exactly three unexposed items receive lexical credit. Three. And all three fail relational adjudication — a model-judged audit checking whether the credited item actually asserts the requested relation. A stratified audit of 423 observations finds 97.1% of credited items do assert the right relation, but that's on exposed items where the answer was already visible. On targets the scaffold does NOT expose, lexical recovery collapses from 0.121 unaided to 0.004 grounded. The retrieval scaffold actively hurts performance on the hard cases. The architecture here is not a new model — it's a measurement instrument. Exposure accounting sits atop any graph-based RAG pipeline and partitions the evaluation space into exposed vs. unexposed items, then measures recovery in each partition separately. The copy ceiling serves as a deterministic, judge-free baseline that requires zero model inference. This makes it cheap and unambiguous. A rephrasing experiment reduces exposure from 0.964 to 0.328 by reformulating questions outside the graph's title vocabulary, revealing how brittle current exposure levels are. An absence-triggered fallback mechanism activates on only 2 of 506 questions — the system barely notices when the answer isn't there. Integrity is mixed. The paper is admirably transparent about what it does NOT prove: it explicitly states the accounting "does not determine whether reasoning occurred" and acknowledges that negative controls in the paired production study "do not establish content specificity beyond a well-formed on-corpus block." These are the kind of honest caveats most papers bury or omit. However, the evaluation is entirely self-contained — the corpus, the graph, the evaluation, and the judging are all author-designed. No community benchmark, no independent replication. The 10 models tested are not named in the abstract, and the corpus details are sparse. The model-judged audit introduces its own circularity risk, though the symmetric quotation-verification policy mitigates this somewhat. The practical implication is uncomfortable for anyone shipping RAG systems: if you're evaluating retrieval-augmented generation by comparing grounded recall to unaided recall, you may be measuring context exposure, not model capability. Exposure accounting should be a standing control — like a placebo arm in a clinical trial. The copy ceiling is trivial to compute and immediately reveals how much of your "grounding uplift" is illusory. The paper doesn't solve the harder problem of how to evaluate genuine reasoning over retrieved structure, but it makes the measurement gap impossible to ignore. The obvious next experiment — testing this framework on established RAG benchmarks like Natural Questions or HotpotQA with real knowledge graphs — was not run. The honest read is probably (a): this is a single-author paper, and building the exposure accounting framework plus running ten models over a curated corpus is already substantial work. But until the framework is applied to community benchmarks with known baselines, its generalizability remains an open question.